Clicking on a dot opens the run log.
Sys.time()
#> [1] "2022-08-12 05:27:32 UTC"
gh::gh_rate_limit()
#> $limit
#> [1] 1000
#>
#> $remaining
#> [1] 741
#>
#> $reset
#> [1] "2022-08-12 06:26:16 UTC"
print(messages)
#> [1] "Running on CI, disabling cache"
#> [2] "[01/28] Making API calls for module jaspDescriptives..."
#> [3] "[02/28] Making API calls for module jaspTTests..."
#> [4] "[03/28] Making API calls for module jaspAnova..."
#> [5] "[04/28] Making API calls for module jaspMixedModels..."
#> [6] "[05/28] Making API calls for module jaspRegression..."
#> [7] "[06/28] Making API calls for module jaspFrequencies..."
#> [8] "[07/28] Making API calls for module jaspFactor..."
#> [9] "[08/28] Making API calls for module jaspAudit..."
#> [10] "[09/28] Making API calls for module jaspBain..."
#> [11] "[10/28] Making API calls for module jaspBsts..."
#> [12] "[11/28] Making API calls for module jaspCircular..."
#> [13] "[12/28] Making API calls for module jaspCochrane..."
#> [14] "[13/28] Making API calls for module jaspDistributions..."
#> [15] "[14/28] Making API calls for module jaspEquivalenceTTests..."
#> [16] "[15/28] Making API calls for module jaspJags..."
#> [17] "[16/28] Making API calls for module jaspLearnBayes..."
#> [18] "[17/28] Making API calls for module jaspLearnStats..."
#> [19] "[18/28] Making API calls for module jaspMachineLearning..."
#> [20] "[19/28] Making API calls for module jaspMetaAnalysis..."
#> [21] "[20/28] Making API calls for module jaspNetwork..."
#> [22] "[21/28] Making API calls for module jaspProcessControl..."
#> [23] "[22/28] Making API calls for module jaspProphet..."
#> [24] "[23/28] Making API calls for module jaspReliability..."
#> [25] "[24/28] Making API calls for module jaspSem..."
#> [26] "[25/28] Making API calls for module jaspSummaryStatistics..."
#> [27] "[26/28] Making API calls for module jaspSurvival..."
#> [28] "[27/28] Making API calls for module jaspTimeSeries..."
#> [29] "[28/28] Making API calls for module jaspVisualModeling..."
print(repos_successful)
#> [1] "jaspDescriptives" "jaspTTests" "jaspAnova"
#> [4] "jaspMixedModels" "jaspRegression" "jaspFrequencies"
#> [7] "jaspFactor" "jaspAudit" "jaspBsts"
#> [10] "jaspCircular" "jaspCochrane" "jaspDistributions"
#> [13] "jaspEquivalenceTTests" "jaspJags" "jaspLearnBayes"
#> [16] "jaspMachineLearning" "jaspMetaAnalysis" "jaspNetwork"
#> [19] "jaspProcessControl" "jaspProphet" "jaspReliability"
#> [22] "jaspSem" "jaspSummaryStatistics"
repos_failed <- setdiff(repos, repos_successful)
print(repos_failed)
#> [1] "jaspBain" "jaspLearnStats" "jaspSurvival"
#> [4] "jaspTimeSeries" "jaspVisualModeling"